home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Apple WWDC 1996
/
WWDC96_1996 (CD).toast
/
Technology Materials
/
MacOS 8 Resources
/
Developer Tools
/
Mac OS 8 Interfaces & Libraries
/
Interfaces
/
IDLIncludes
/
TextEncodingConverter.idl
< prev
next >
Wrap
Text File
|
1996-05-01
|
2KB
|
67 lines
/*
File: TextEncodingConverter.idl
Contains: Text Encoding Conversion Interfaces.
Version: Technology: System 7.1 through System 8
Release: Universal Interfaces 3.0d3 on Copland DR1
Copyright: © 1984-1996 by Apple Computer, Inc. All rights reserved.
Bugs?: If you find a problem with this file, send the file and version
information (from above) and the problem description to:
Internet: apple.bugs@applelink.apple.com
AppleLink: APPLE.BUGS
*/
#ifndef __TEXTENCODINGCONVERTER_IDL__
#define __TEXTENCODINGCONVERTER_IDL__
#include <somobj.idl>
#include <somcls.idl>
#ifndef __TYPES_IDL__
#include <Types.idl>
#endif
#ifndef __MIXEDMODE_IDL__
#include <MixedMode.idl>
#endif
#ifndef __UNICODE_IDL__
#include <Unicode.idl>
#endif
#ifdef __SOMIDL__
#if FOR_SYSTEM7_AND_SYSTEM8_PREEMPTIVE
/* converter object reference */
typedef OpaquePtr EncodingConverterRef;
/* character substitution */
typedef SOMLargeStruct CharSubstitution; /* Derived from a struct of 8 bytes in size */
typedef SOMLargeStruct CharSubstitutionList; /* Derived from a struct of 12 bytes in size */
/* invalid character lists */
typedef SOMLargeStruct InvalidCharRange; /* Derived from a struct of 8 bytes in size */
typedef SOMLargeStruct InvalidCharRangeList; /* Derived from a struct of 12 bytes in size */
/* encoding conversion options */
typedef SOMLargeStruct EncodingOptions; /* Derived from a struct of 8 bytes in size */
#endif
#if FOR_SYSTEM7_AND_SYSTEM8_PREEMPTIVE
/* return number of encodings types supported by user's configuraton of the encoding converter */
/* fill in an array of type TextEncoding passed in by the user with types of encodings the current configuration of the encoder can handle. */
/* create a converter object with default conversion characteristics */
/* disose and encoding converter object */
/* manage substitution lists */
/* manage invalid character lists */
#endif
#endif /* __SOMIDL__ */
#endif /* __TEXTENCODINGCONVERTER_IDL__ */